home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-10
/
statm_ny.zip
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-09-01
|
4KB
|
96 lines
echo off
cls
if not %2x==x goto START
goto BEGIN
:BEGIN
echo.
echo.
echo.
echo ╔═╡ Installing StatMaster ╞═══════════════════════════════════════╗
echo ║ ║
echo ║ To install StatMaster to drive C, in a subdirectory called SM, ║
echo ║ type "INSTALL C SM" at the prompt, then press ENTER (─┘). ║
echo ║ ║
echo ║ To install StatMaster to drive D, in a subdirectory called NY ║
echo ║ (for New York), type "INSTALL D NY", then press ENTER (─┘). ║
echo ║ ║
echo ║ To install StatMaster to another drive and/or subdirectory, use ║
echo ║ the syntax: "INSTALL drivename subdirectory". ║
echo ║ ║
echo ║ Please type your command line at the prompt now . . . ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════════╝
fill 3,5,67,14,1,e
fill 3,8,23,1,1,f
echo.
echo.
goto FINISH
:START
echo.
echo.
echo.
echo StatMaster will be installed to: %1:\%2
fill 3,48,12,1,0,F
echo.
echo.
echo ╔═╡ Select an Option ╞═══════════════════════════════════╗
echo ║ ║
echo ║ A. Install the software to the path specified above. ║
echo ║ ║
echo ║ B. Oops! Let me change the path specified above. ║
echo ║ ║
echo ╚════════════════════════════════════════════════════════╝
fill 6,5,58,7,1,e
fill 6,8,18,1,1,f
echo.
echo Please select A or B now.
echo.
keypress AB
if errorlevel 2 goto OOPS
if errorlevel 1 goto DOIT
echo Sorry, that was an invalid selection, please try again.
wait 2
cls
goto START
echo
:OOPS
fill 10,7,54,1,0,f
wait 3
cls
goto BEGIN
:DOIT
fill 8,7,54,1,0,f
wait 2
cls
echo.
echo.
echo INSTALL will now create the specified subdirectory, then copy
echo and uncompress the information it needs to your hard drive . . .
echo.
echo.
stat-ny %1:\%2 /w
echo.
echo The installation is now complete . . .
wait 2
cls
echo.
echo.
echo ╔════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ For an introduction to StatMaster Desktop Demographics, type ║
echo ║ "INFO" now, then press the Enter key (─┘). ║
echo ║ ║
echo ║ To start the program, make sure you are logged onto the sub- ║
echo ║ directory you created, type the two-letter state code for the ║
echo ║ state you installed (NY), then press the Enter key (─┘). ║
echo ║ ║
echo ║ If you have difficulties with this installation or any other ║
echo ║ aspect of StatMaster, please call CyberSoft at (602)491-0022. ║
echo ║ ║
echo ╚════════════════════════════════════════════════════════════════╝
fill 2,3,66,13,1,e
%1:
cd \%2
echo.
:FINISH